home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00294_Script_spriteProps < prev    next >
Text File  |  1999-02-25  |  603b  |  20 lines

  1. property locH,locV,blend,ink,castNum,visible
  2.  
  3. on birth me,sNum
  4.   set locH to the locH of sprite sNum
  5.   set locV to the locV of sprite sNum
  6.   set blend to the blend of sprite sNum
  7.   set ink to the ink of sprite sNum
  8.   set castNum to the castNum of sprite sNum
  9.   set visible to the visible of sprite sNum
  10.   return me
  11. end
  12.  
  13. on setProps me,sNum
  14.   set the locH of sprite sNum to locH
  15.   set the locV of sprite sNum to locV
  16.   set the blend of sprite sNum to blend
  17.   set the ink of sprite sNum to ink
  18.   set the castNum of sprite sNum to castNum
  19.   set the visible of sprite sNum to visible
  20. end